Socket
Socket
Sign inDemoInstall

@types/jsonwebtoken

Package Overview
Dependencies
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jsonwebtoken

TypeScript definitions for jsonwebtoken


Version published
Weekly downloads
8.2M
decreased by-1.7%
Maintainers
1
Weekly downloads
 
Created

What is @types/jsonwebtoken?

The @types/jsonwebtoken package provides TypeScript type definitions for the jsonwebtoken package, which is a popular library for working with JSON Web Tokens (JWTs) in Node.js applications. These type definitions allow developers to use jsonwebtoken in TypeScript projects with type checking, enabling better development experience and error handling.

What are @types/jsonwebtoken's main functionalities?

Signing Tokens

This feature allows you to create a JWT by encoding a payload and a secret. The `sign` method takes the payload and the secret key, then returns a token string.

import jwt from 'jsonwebtoken';

const token = jwt.sign({ foo: 'bar' }, 'shhhhh');

Verifying Tokens

This feature enables the verification of a JWT's signature and the extraction of the token's payload. The `verify` method takes the token and the secret key, and either returns the decoded payload or throws an error if the token is invalid.

import jwt from 'jsonwebtoken';

try {
  const decoded = jwt.verify(token, 'shhhhh');
  console.log(decoded);
} catch(err) {
  // handle token verification error
}

Decoding Tokens

This feature allows for the decoding of a JWT without verifying its signature. The `decode` method returns the payload of the token. This is useful for cases where you just need to read the token's payload without needing to validate it.

import jwt from 'jsonwebtoken';

const decoded = jwt.decode(token, { complete: true });
console.log(decoded);

Other packages similar to @types/jsonwebtoken

FAQs

Package last updated on 02 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc